home *** CD-ROM | disk | FTP | other *** search
- this.masterVolume = new Sound(this);
- this.createEmptyMovieClip("soundHolder_mc",this.getNextHighestDepth());
- soundList = ["opening","paris","resturaunt","kitchen","winner","loser","r_1","r_2","r_3","r_4","r_5","r_6"];
- for(var i in soundList)
- {
- tmp = this[soundList[i] + "_sound"] = soundHolder_mc.createEmptyMovieClip(soundList[i],soundHolder_mc.getNextHighestDepth());
- tmp.snd = new Sound(tmp);
- tmp.snd.attachSound(soundList[i]);
- }
-